home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0797.zip / HOWARD.ZIP / DEMODLG.CPP next >
C/C++ Source or Header  |  1997-04-13  |  1KB  |  55 lines

  1. // DemoDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "IdleDemo.h"
  6. #include "DemoDlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CDemoDlg dialog
  16.  
  17.  
  18. CDemoDlg::CDemoDlg(CWnd* pParent /*=NULL*/)
  19.    : CIdleDlg(CDemoDlg::IDD, pParent)
  20. {
  21.    //{{AFX_DATA_INIT(CDemoDlg)
  22.       // NOTE: the ClassWizard will add member initialization here
  23.    //}}AFX_DATA_INIT
  24. }
  25.  
  26.  
  27. void CDemoDlg::DoDataExchange(CDataExchange* pDX)
  28. {
  29.    CIdleDlg::DoDataExchange(pDX);
  30.    //{{AFX_DATA_MAP(CDemoDlg)
  31.       // NOTE: the ClassWizard will add DDX and DDV calls here
  32.    //}}AFX_DATA_MAP
  33. }
  34.  
  35.  
  36. BEGIN_MESSAGE_MAP(CDemoDlg, CIdleDlg)
  37.    //{{AFX_MSG_MAP(CDemoDlg)
  38.       // NOTE: the ClassWizard will add message map macros here
  39.    ON_UPDATE_COMMAND_UI(IDOK, OnUpdateAny)
  40.    //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CDemoDlg message handlers
  45.  
  46. void CDemoDlg::OnUpdateAny(CCmdUI * aEnabler)
  47. {
  48.    switch (aEnabler->m_nID)
  49.       {
  50.       case IDOK:
  51.          aEnabler->Enable(!GetDlgItem(IDOK)->IsWindowEnabled());
  52.          break;
  53.       }
  54. }
  55.